home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / edit / tedit2.zip / T.MAN < prev   
Text File  |  1989-12-02  |  26KB  |  705 lines

  1. CB
  2.  
  3.  
  4.  
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11.  
  12.  
  13.  
  14.  
  15.  
  16.  
  17.  
  18.  
  19.  
  20.  
  21.  
  22.  
  23.  
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34.                                   Technical Editor
  35.  
  36.                                      Version 2.0
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.           Copyright (c) Superior Soft 1988,1989,1990. All rights reserved.
  66.  
  67.  
  68.  
  69.             2.0  Technical Editor                                      2
  70.  
  71.  
  72.             E1. INTRODUCTIONF
  73.  
  74.             T-edit (Technical Editor) is a general purpose source code
  75.             editor.  It provides a fast multi-window/file editing
  76.             environment for programmers.
  77.             T-edit uses a unique combination of editing windows and
  78.             screens.  An editing session can be broken up into multiple
  79.             screens, and in turn each screen may be broken up into
  80.             multiple windows (16 per screen).
  81.             The Technical Editor was designed with enough features to
  82.             make most editing chores non-laborious.
  83.             The most noted features:
  84.             Auto indenting
  85.             Auto word search (searches for word under cursor)
  86.             Binary and read only editing modes
  87.             Bookmarks (up to 5)
  88.             DOS environment
  89.             Extended PC ASCII character set
  90.             File Pick List
  91.             File based key-map configurations
  92.             Interactive editor configuration
  93.             Keyboard macros
  94.             Keyboard re-definition
  95.             Line and rectangular block marking
  96.             UNDO any changes made to a file during an editing session
  97.             Multiple screens and windows
  98.             Regular expression search and replace
  99.             Selection box for file loading (moves through directories)
  100.             Virtual Memory (edit files larger than available memory)
  101.  
  102.  
  103.             E2. INSTALLATIONF
  104.  
  105.             Copy files t.exe and t.hlp into a directory that is included
  106.             in your DOS "PATH".
  107.  
  108.  
  109.             E3. BRINGING UP T-EDITF
  110.  
  111.             Usage: t [-rbp] file1.ext file2.ext ... filen.ext
  112.             T-edit allows any number of files to be entered at the
  113.             command line, and gives each one it's own full screen
  114.             window. Wild card characters * and ? are supported.
  115.             T-edit has three command line options:
  116.  
  117.             [-b]      This causes all subsequent files to be read in as
  118.                       BINARY. In this mode, lines are fixed in length
  119.                       (length specified in the configuration menu) and
  120.                       characters can only be changed.  T-edit will allow
  121.                       nothing to be added or deleted, just overwritten.
  122.             [-r]      This causes all subsequent files to be read in as
  123.                       READ-ONLY.  In this mode, no changing is allowed.
  124.                       Onlymovement, searching, and window changing is
  125.                       allowed.
  126.  
  127.  
  128.  
  129.           Copyright (c) Superior Soft 1988,1989,1990. All rights reserved.
  130.  
  131.  
  132.  
  133.             2.0  Technical Editor                                      3
  134.  
  135.  
  136.             [-p]      Brings up the file selection list using second
  137.                       command line argument as the search pattern.
  138.  
  139.  
  140.             Examples:
  141.                       t test.c
  142.                       t prog.prg  *.
  143.                       t tool????.*  header.h  -r sysgen.sys
  144.                       t t??*.tx? -b prog.exe prog.obj
  145.                       t -p  *.txt
  146.  
  147.  
  148.             E4. MOVING AROUNDF
  149.  
  150.             All standard keypad functions are supported (Up, Down,
  151.             Right, Left, PgUp, PgDn).
  152.             Home           moves the cursor to the beginning of the
  153.                            line.
  154.             End            moves the cursor to the end of the line.
  155.             Ctrl-Home      places cursor at the top of the current
  156.                            window in the same column.
  157.             Ctrl-End       places cursor at the bottom of the current
  158.                            window in the same column.
  159.             Ctrl-PgUp      Moves the cursor to the beginning of the
  160.                            file.
  161.             Ctrl-PgDn      Moves the cursor to the end of the file.
  162.             AlT-G          prompts the user for a line number to go-to.
  163.  
  164.             Bookmarks are supported, and as many as five may be placed.
  165.             Alt-[1...5]    inserts a bookmark at the current location.
  166.             Alt-J+[1...5]  moves the cursor to the specified bookmark
  167.                            location.
  168.  
  169.  
  170.             E5. DELETINGF
  171.  
  172.             Backspace      Deletes the character to the left of the
  173.                            cursor. If cursor is in column 0 and the
  174.                            current line is not the first line in the
  175.                            file, the beginning of the current line is
  176.                            placed at the end of the previous line.
  177.             DEL            Deletes  the  character at the cursor. If the
  178.                            cursor is  past  the last character in the
  179.                            line, the beginning of the line below will be
  180.                            added to the current line at current cursor
  181.                            position.
  182.             Alt-D          Deletes the current line. All lines below
  183.                            move up one line. Each line deleted is saved
  184.                            in a UNDO buffer in stack order (LIFO).
  185.             Alt-K          Truncates the current line at the cursor
  186.                            position. This has no effect if the cursor is
  187.                            past the physical end of line.
  188.  
  189.  
  190.  
  191.  
  192.  
  193.           Copyright (c) Superior Soft 1988,1989,1990. All rights reserved.
  194.  
  195.  
  196.  
  197.             2.0  Technical Editor                                      4
  198.  
  199.  
  200.             E6. UNDOF
  201.  
  202.             CTRL-U will "undo" the last physical change made to the
  203.             current file. Tech-Edit keeps track of the last 1000
  204.             modifications made to any file. Search and Replace is
  205.             currently not included in UNDO. Each UNDO command will take
  206.             you to the last place a modification took place and "undo"
  207.             that modification; leaving the cursor at the position where
  208.             the undo took place.
  209.  
  210.  
  211.             E7. FILE OPERATIONSF
  212.  
  213.             Alt-F+N        Reads a new file into the next screen.
  214.             Alt-F+P        Reads a new file into the previous screen.
  215.             Alt-F+H        Splits the current screen in half
  216.                            horizontally and reads a new file into the
  217.                            window below.
  218.             Alt-F+V        Splits the current screen in half vertically
  219.                            and reads a new file into the window to the
  220.                            right.
  221.             Alt-F+S        Prompts the user for a file name (defaulting
  222.                            to the file name  entered  when loaded).
  223.                            Saves the file if  ENTER is pressed; aborts
  224.                            if ESC is pressed. Resumes  in edit mode, and
  225.                            the file status is changed to "Sv".
  226.             Alt-F+I        Prompts the user for a file name, and checks
  227.                            to see if the  file exists.  If the  file
  228.                            exists, it is inserted before the current
  229.                            line.
  230.  
  231.  
  232.             E8. BLOCKINGF
  233.  
  234.             T-edit supports line oriented and rectangular oriented
  235.             blocking operations.
  236.             Alt-L          Marking lines.  After invoking the line block
  237.                            command, the current line will be either the
  238.                            top or the bottom of the  block depending on
  239.                            whether  or not  you move up or down in the
  240.                            window.  All lines highlighted will be
  241.                            considered in the block.  You can move around
  242.                            with any of the movement commands and also
  243.                            use the search commands. After  covering  the
  244.